home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / share / awk / nextfile.awk < prev    next >
Text File  |  2005-10-13  |  383b  |  17 lines

  1. # nextfile --- skip remaining records in current file
  2. # correctly handle successive occurrences of the same file
  3. #
  4. # Arnold Robbins, arnold@gnu.org, Public Domain
  5. # May, 1993
  6.  
  7. # this should be read in before the "main" awk program
  8.  
  9. function nextfile()   { _abandon_ = FILENAME; next }
  10.  
  11. _abandon_ == FILENAME {
  12.       if (FNR == 1)
  13.           _abandon_ = ""
  14.       else
  15.           next
  16. }
  17.